-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[refactor]: Remove isSSOEnabled logic throughout the codebase #9462
Conversation
Eliminated all references to `isSSOEnabled` across the frontend, backend, and configuration files. This change simplifies the codebase by removing unnecessary feature flag checks, associated logic, and environment variables. The SSO feature remains available without reliance on this flag.
Log
|
@FelixMalfait Do you want a command for the next migration to clean the flag in the database? |
Let's wait for the deploy before merging this PR :) |
export * from './animated-expandable-container/types/AnimationSize'; | ||
export * from './animated-expandable-container/utils/getCommonStyles'; | ||
export * from './animated-expandable-container/utils/getExpandableAnimationConfig'; | ||
export * from './animated-expandable-container/utils/getTransitionValues'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what this is / why this is part of this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right. Weird. I remove that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!
Remove redundant exports related to animated expandable container types and utils. This streamlines the index file by exposing only necessary components for cleaner and more maintainable imports.
…and-env # Conflicts: # packages/twenty-front/src/generated/graphql.tsx
Removed the `isSSOEnabled` field from the GraphQL schema and related query types. This cleanup eliminates redundant data and simplifies the client config structure.
Eliminated all references to
isSSOEnabled
across the frontend, backend, and configuration files. This change simplifies the codebase by removing unnecessary feature flag checks, associated logic, and environment variables. The SSO feature remains available without reliance on this flag.